home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / AlexNeXTSTEPSource / Source / Chapter10_Help / Words / Document.h next >
Text File  |  1995-06-12  |  455b  |  26 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import <objc/Object.h>
  5.  
  6. @interface Document:Object
  7. {
  8.     id window;
  9.     id theText;
  10.     id textController;
  11.     const char *filename;
  12. }
  13.  
  14. - init;
  15. - (BOOL)initDocumentFromFile:
  16.   (const char *)fullPathName;
  17. - showDocument;
  18. - saveDocumentToFile:
  19.   (const char*)fullPathName;
  20. - textDidGetKeys:sender isEmpty:(BOOL)flag;
  21. - showError:(const char*)errorMessage;
  22. - setFilename:(const char *)fullPathName;
  23. - (const char*)filename;
  24.  
  25. @end
  26.